找传奇、传世资源到传世资源站!

C#中使用Applibrary导入导出包含多个SHEET的Excel

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】C#中使用Applibrary导入导出包含多个SHEET的Excel的类库和案例使用说明。

【相关图片】

from clipboard

【源码结构】

.
├── C#导入导出Excel类库(可操作多个SHEET)
│   ├── AppLibrary
│   │   ├── AppLibrary
│   │   │   ├── AppLibrary.csproj
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── ReadExcel
│   │   │   │   ├── Common
│   │   │   │   │   ├── Assert.cs
│   │   │   │   │   ├── AssertionFailed.cs
│   │   │   │   │   ├── Logger.cs
│   │   │   │   │   └── log
│   │   │   │   │       └── SimpleLogger.cs
│   │   │   │   ├── Reader
│   │   │   │   │   ├── Biff
│   │   │   │   │   │   ├── BaseCompoundFile.cs
│   │   │   │   │   │   ├── BuiltInFormat.cs
│   │   │   │   │   │   ├── BuiltInStyle.cs
│   │   │   │   │   │   ├── ByteData.cs
│   │   │   │   │   │   ├── CellReferenceHelper.cs
│   │   │   │   │   │   ├── DisplayFormat.cs
│   │   │   │   │   │   ├── DoubleHelper.cs
│   │   │   │   │   │   ├── Draw
│   │   │   │   │   │   │   ├── BStoreContainer.cs
│   │   │   │   │   │   │   ├── BlipStoreEntry.cs
│   │   │   │   │   │   │   ├── BlipType.cs
│   │   │   │   │   │   │   ├── Chart.cs
│   │   │   │   │   │   │   ├── ClientAnchor.cs
│   │   │   │   │   │   │   ├── ClientData.cs
│   │   │   │   │   │   │   ├── Dg.cs
│   │   │   │   │   │   │   ├── DgContainer.cs
│   │   │   │   │   │   │   ├── Dgg.cs
│   │   │   │   │   │   │   ├── DggContainer.cs
│   │   │   │   │   │   │   ├── Drawing.cs
│   │   │   │   │   │   │   ├── DrawingGroup.cs
│   │   │   │   │   │   │   ├── EscherAtom.cs
│   │   │   │   │   │   │   ├── EscherContainer.cs
│   │   │   │   │   │   │   ├── EscherRecord.cs
│   │   │   │   │   │   │   ├── EscherRecordData.cs
│   │   │   │   │   │   │   ├── EscherRecordType.cs
│   │   │   │   │   │   │   ├── EscherStream.cs
│   │   │   │   │   │   │   ├── MsoDrawingGroupRecord.cs
│   │   │   │   │   │   │   ├── MsoDrawingRecord.cs
│   │   │   │   │   │   │   ├── ObjRecord.cs
│   │   │   │   │   │   │   ├── Opt.cs
│   │   │   │   │   │   │   ├── SheetDrawingWriter.cs
│   │   │   │   │   │   │   ├── Sp.cs
│   │   │   │   │   │   │   ├── SpContainer.cs
│   │   │   │   │   │   │   ├── Spgr.cs
│   │   │   │   │   │   │   ├── SpgrContainer.cs
│   │   │   │   │   │   │   └── SplitMenuColors.cs
│   │   │   │   │   │   ├── EmptyCell.cs
│   │   │   │   │   │   ├── FontRecord.cs
│   │   │   │   │   │   ├── Fonts.cs
│   │   │   │   │   │   ├── FormatRecord.cs
│   │   │   │   │   │   ├── FormattingRecords.cs
│   │   │   │   │   │   ├── Formula
│   │   │   │   │   │   │   ├── Add.cs
│   │   │   │   │   │   │   ├── Area.cs
│   │   │   │   │   │   │   ├── Area3d.cs
│   │   │   │   │   │   │   ├── ArgumentSeparator.cs
│   │   │   │   │   │   │   ├── Attribute.cs
│   │   │   │   │   │   │   ├── BinaryOperator.cs
│   │   │   │   │   │   │   ├── BooleanValue.cs
│   │   │   │   │   │   │   ├── BuiltInFunction.cs
│   │   │   │   │   │   │   ├── CellReference.cs
│   │   │   │   │   │   │   ├── CellReference3d.cs
│   │   │   │   │   │   │   ├── CloseParentheses.cs
│   │   │   │   │   │   │   ├── Concatenate.cs
│   │   │   │   │   │   │   ├── Divide.cs
│   │   │   │   │   │   │   ├── DoubleValue.cs
│   │   │   │   │   │   │   ├── Equal.cs
│   │   │   │   │   │   │   ├── ExternalSheet.cs
│   │   │   │   │   │   │   ├── FormulaException.cs
│   │   │   │   │   │   │   ├── FormulaParser.cs
│   │   │   │   │   │   │   ├── Function.cs
│   │   │   │   │   │   │   ├── FunctionNames.cs
│   │   │   │   │   │   │   ├── FunctionNames.resx
│   │   │   │   │   │   │   ├── FunctionNames_de.resx
│   │   │   │   │   │   │   ├── FunctionNames_es.resx
│   │   │   │   │   │   │   ├── FunctionNames_fr.resx
│   │   │   │   │   │   │   ├── GreaterEqual.cs
│   │   │   │   │   │   │   ├── GreaterThan.cs
│   │   │   │   │   │   │   ├── IntegerValue.cs
│   │   │   │   │   │   │   ├── LessEqual.cs
│   │   │   │   │   │   │   ├── LessThan.cs
│   │   │   │   │   │   │   ├── MemFunc.cs
│   │   │   │   │   │   │   ├── Minus.cs
│   │   │   │   │   │   │   ├── MissingArg.cs
│   │   │   │   │   │   │   ├── Multiply.cs
│   │   │   │   │   │   │   ├── Name.cs
│   │   │   │   │   │   │   ├── NameRange.cs
│   │   │   │   │   │   │   ├── NotEqual.cs
│   │   │   │   │   │   │   ├── NumberValue.cs
│   │   │   │   │   │   │   ├── OpenParentheses.cs
│   │   │   │   │   │   │   ├── Operand.cs
│   │   │   │   │   │   │   ├── Operator.cs
│   │   │   │   │   │   │   ├── Parenthesis.cs
│   │   │   │   │   │   │   ├── ParseItem.cs
│   │   │   │   │   │   │   ├── ParsedThing.cs
│   │   │   │   │   │   │   ├── Parser.cs
│   │   │   │   │   │   │   ├── Percent.cs
│   │   │   │   │   │   │   ├── Plus.cs
│   │   │   │   │   │   │   ├── Power.cs
│   │   │   │   │   │   │   ├── RangeSeparator.cs
│   │   │   │   │   │   │   ├── SharedFormulaArea.cs
│   │   │   │   │   │   │   ├── SharedFormulaCellReference.cs
│   │   │   │   │   │   │   ├── StringFormulaParser.cs
│   │   │   │   │   │   │   ├── StringFunction.cs
│   │   │   │   │   │   │   ├── StringOperator.cs
│   │   │   │   │   │   │   ├── StringParseItem.cs
│   │   │   │   │   │   │   ├── StringValue.cs
│   │   │   │   │   │   │   ├── Subtract.cs
│   │   │   │   │   │   │   ├── Token.cs
│   │   │   │   │   │   │   ├── TokenFormulaParser.cs
│   │   │   │   │   │   │   ├── UnaryMinus.cs
│   │   │   │   │   │   │   ├── UnaryOperator.cs
│   │   │   │   │   │   │   ├── UnaryPlus.cs
│   │   │   │   │   │   │   ├── VariableArgFunction.cs
│   │   │   │   │   │   │   └── Yylex.cs
│   │   │   │   │   │   ├── FormulaData.cs
│   │   │   │   │   │   ├── HeaderFooter.cs
│   │   │   │   │   │   ├── IndexMapping.cs
│   │   │   │   │   │   ├── IntegerHelper.cs
│   │   │   │   │   │   ├── NumFormatRecordsException.cs
│   │   │   │   │   │   ├── PaletteRecord.cs
│   │   │   │   │   │   ├── RangeImpl.cs
│   │   │   │   │   │   ├── RecordData.cs
│   │   │   │   │   │   ├── SheetRangeImpl.cs
│   │   │   │   │   │   ├── StringHelper.cs
│   │   │   │   │   │   ├── Type.cs
│   │   │   │   │   │   ├── WorkbookMethods.cs
│   │   │   │   │   │   ├── WorkspaceInformationRecord.cs
│   │   │   │   │   │   ├── WritableRecordData.cs
│   │   │   │   │   │   └── XFRecord.cs
│   │   │   │   │   ├── BooleanCell.cs
│   │   │   │   │   ├── BooleanFormulaCell.cs
│   │   │   │   │   ├── Cell.cs
│   │   │   │   │   ├── CellFormat.cs
│   │   │   │   │   ├── CellReferenceHelper.cs
│   │   │   │   │   ├── CellType.cs
│   │   │   │   │   ├── CellView.cs
│   │   │   │   │   ├── DateCell.cs
│   │   │   │   │   ├── DateFormulaCell.cs
│   │   │   │   │   ├── ErrorCell.cs
│   │   │   │   │   ├── ErrorFormulaCell.cs
│   │   │   │   │   ├── Format
│   │   │   │   │   │   ├── Alignment.cs
│   │   │   │   │   │   ├── BoldStyle.cs
│   │   │   │   │   │   ├── Border.cs
│   │   │   │   │   │   ├── BorderLineStyle.cs
│   │   │   │   │   │   ├── CellFormat.cs
│   │   │   │   │   │   ├── Colour.cs
│   │   │   │   │   │   ├── Font.cs
│   │   │   │   │   │   ├── Format.cs
│   │   │   │   │   │   ├── Orientation.cs
│   │   │   │   │   │   ├── PageOrientation.cs
│   │   │   │   │   │   ├── PaperSize.cs
│   │   │   │   │   │   ├── Pattern.cs
│   │   │   │   │   │   ├── ScriptStyle.cs
│   │   │   │   │   │   ├── UnderlineStyle.cs
│   │   │   │   │   │   └── VerticalAlignment.cs
│   │   │   │   │   ├── FormulaCell.cs
│   │   │   │   │   ├── HeaderFooter.cs
│   │   │   │   │   ├── Hyperlink.cs
│   │   │   │   │   ├── JXLException.cs
│   │   │   │   │   ├── LabelCell.cs
│   │   │   │   │   ├── NumberCell.cs
│   │   │   │   │   ├── NumberFormulaCell.cs
│   │   │   │   │   ├── Range.cs
│   │   │   │   │   ├── Read
│   │   │   │   │   │   └── Biff
│   │   │   │   │   │       ├── BOFRecord.cs
│   │   │   │   │   │       ├── BaseSharedFormulaRecord.cs
│   │   │   │   │   │       ├── BiffException.cs
│   │   │   │   │   │       ├── BiffRecordReader.cs
│   │   │   │   │   │       ├── BlankCell.cs
│   │   │   │   │   │       ├── BooleanFormulaRecord.cs
│   │   │   │   │   │       ├── BooleanRecord.cs
│   │   │   │   │   │       ├── BottomMarginRecord.cs
│   │   │   │   │   │       ├── BoundsheetRecord.cs
│   │   │   │   │   │       ├── CellValue.cs
│   │   │   │   │   │       ├── CodepageRecord.cs
│   │   │   │   │   │       ├── ColumnInfoRecord.cs
│   │   │   │   │   │       ├── CompoundFile.cs
│   │   │   │   │   │       ├── DateFormulaRecord.cs
│   │   │   │   │   │       ├── DateRecord.cs
│   │   │   │   │   │       ├── DefaultColumnWidthRecord.cs
│   │   │   │   │   │       ├── DefaultRowHeightRecord.cs
│   │   │   │   │   │       ├── DimensionRecord.cs
│   │   │   │   │   │       ├── ErrorFormulaRecord.cs
│   │   │   │   │   │       ├── ErrorRecord.cs
│   │   │   │   │   │       ├── ExternalSheetRecord.cs
│   │   │   │   │   │       ├── File.cs
│   │   │   │   │   │       ├── FooterRecord.cs
│   │   │   │   │   │       ├── Formula.cs
│   │   │   │   │   │       ├── FormulaRecord.cs
│   │   │   │   │   │       ├── HeaderRecord.cs
│   │   │   │   │   │       ├── HorizontalPageBreaksRecord.cs
│   │   │   │   │   │       ├── HyperlinkRecord.cs
│   │   │   │   │   │       ├── LabelRecord.cs
│   │   │   │   │   │       ├── LabelSSTRecord.cs
│   │   │   │   │   │       ├── LeftMarginRecord.cs
│   │   │   │   │   │       ├── MarginRecord.cs
│   │   │   │   │   │       ├── MergedCellsRecord.cs
│   │   │   │   │   │       ├── MulBlankCell.cs
│   │   │   │   │   │       ├── MulBlankRecord.cs
│   │   │   │   │   │       ├── MulRKRecord.cs
│   │   │   │   │   │       ├── NameRecord.cs
│   │   │   │   │   │       ├── NineteenFourRecord.cs
│   │   │   │   │   │       ├── NumberFormulaRecord.cs
│   │   │   │   │   │       ├── NumberRecord.cs
│   │   │   │   │   │       ├── NumberValue.cs
│   │   │   │   │   │       ├── PLSRecord.cs
│   │   │   │   │   │       ├── PaletteRecord.cs
│   │   │   │   │   │       ├── PaneRecord.cs
│   │   │   │   │   │       ├── PasswordException.cs
│   │   │   │   │   │       ├── PasswordRecord.cs
│   │   │   │   │   │       ├── PrintGridLinesRecord.cs
│   │   │   │   │   │       ├── PrintHeadersRecord.cs
│   │   │   │   │   │       ├── ProtectRecord.cs
│   │   │   │   │   │       ├── RKHelper.cs
│   │   │   │   │   │       ├── RKRecord.cs
│   │   │   │   │   │       ├── RStringRecord.cs
│   │   │   │   │   │       ├── Record.cs
│   │   │   │   │   │       ├── RightMarginRecord.cs
│   │   │   │   │   │       ├── RowRecord.cs
│   │   │   │   │   │       ├── SCLRecord.cs
│   │   │   │   │   │       ├── SSTRecord.cs
│   │   │   │   │   │       ├── SetupRecord.cs
│   │   │   │   │   │       ├── SharedDateFormulaRecord.cs
│   │   │   │   │   │       ├── SharedFormulaRecord.cs
│   │   │   │   │   │       ├── SharedNumberFormulaRecord.cs
│   │   │   │   │   │       ├── SharedStringFormulaRecord.cs
│   │   │   │   │   │       ├── SheetImpl.cs
│   │   │   │   │   │       ├── SheetReader.cs
│   │   │   │   │   │       ├── SortRecord.cs
│   │   │   │   │   │       ├── StringFormulaRecord.cs
│   │   │   │   │   │       ├── SupbookRecord.cs
│   │   │   │   │   │       ├── TopMarginRecord.cs
│   │   │   │   │   │       ├── Window2Record.cs
│   │   │   │   │   │       └── WorkbookParser.cs
│   │   │   │   │   ├── Sheet.cs
│   │   │   │   │   ├── SheetSettings.cs
│   │   │   │   │   ├── StringFormulaCell.cs
│   │   │   │   │   ├── Workbook.cs
│   │   │   │   │   ├── WorkbookSettings.cs
│   │   │   │   │   └── Write
│   │   │   │   │       ├── Border.cs
│   │   │   │   │       ├── BorderLineStyle.cs
│   │   │   │   │       ├── VerticalAlignment.cs
│   │   │   │   │       └── WritableCell.cs
│   │   │   │   └── Units
│   │   │   │       ├── Byte.cs
│   │   │   │       ├── DateTimeFormatInfo.cs
│   │   │   │       ├── File.cs
│   │   │   │       ├── NumberFormatInfo.cs
│   │   │   │       └── ResourceManager.cs
│   │   │   ├── WriteExcel
│   │   │   │   ├── BIFF8.cs
│   │   │   │   ├── Byte
│   │   │   │   │   ├── Bits.cs
│   │   │   │   │   └── Bytes.cs
│   │   │   │   ├── CachedBlockRow.cs
│   │   │   │   ├── Cell.cs
│   │   │   │   ├── CellCoordinate.cs
│   │   │   │   ├── CellTypes.cs
│   │   │   │   ├── Cells.cs
│   │   │   │   ├── CharacterSets.cs
│   │   │   │   ├── Color.cs
│   │   │   │   ├── Colors.cs
│   │   │   │   ├── ColumnInfo.cs
│   │   │   │   ├── EscapementTypes.cs
│   │   │   │   ├── Font.cs
│   │   │   │   ├── FontFamilies.cs
│   │   │   │   ├── FontWeight.cs
│   │   │   │   ├── Fonts.cs
│   │   │   │   ├── Format.cs
│   │   │   │   ├── Formats.cs
│   │   │   │   ├── FormulaRecord.cs
│   │   │   │   ├── HorizontalAlignments.cs
│   │   │   │   ├── IXFTarget.cs
│   │   │   │   ├── LineStyle.cs
│   │   │   │   ├── MSOLE
│   │   │   │   │   ├── Directory.cs
│   │   │   │   │   ├── Header.cs
│   │   │   │   │   ├── MetaData
│   │   │   │   │   │   ├── DocumentSummaryInformationSection.cs
│   │   │   │   │   │   ├── Header.cs
│   │   │   │   │   │   ├── MetadataStream.cs
│   │   │   │   │   │   ├── OriginOperatingSystemVersions.cs
│   │   │   │   │   │   ├── OriginOperatingSystems.cs
│   │   │   │   │   │   ├── Property.cs
│   │   │   │   │   │   ├── PropertyList.cs
│   │   │   │   │   │   ├── Section.cs
│   │   │   │   │   │   ├── SectionList.cs
│   │   │   │   │   │   └── SummaryInformationSection.cs
│   │   │   │   │   ├── Msat.cs
│   │   │   │   │   ├── Ole2Document.cs
│   │   │   │   │   ├── Sat.cs
│   │   │   │   │   ├── Ssat.cs
│   │   │   │   │   ├── Stream.cs
│   │   │   │   │   └── Streams.cs
│   │   │   │   ├── MergeArea.cs
│   │   │   │   ├── Palette.cs
│   │   │   │   ├── RID.cs
│   │   │   │   ├── Record.cs
│   │   │   │   ├── Row.cs
│   │   │   │   ├── RowBlocks.cs
│   │   │   │   ├── Rows.cs
│   │   │   │   ├── SharedStringTable.cs
│   │   │   │   ├── StandardFormats.cs
│   │   │   │   ├── Style.cs
│   │   │   │   ├── Styles.cs
│   │   │   │   ├── TextDirections.cs
│   │   │   │   ├── TextRotations.cs
│   │   │   │   ├── UnderlineTypes.cs
│   │   │   │   ├── UnicodeBytes.cs
│   │   │   │   ├── Util.cs
│   │   │   │   ├── VerticalAlignments.cs
│   │   │   │   ├── Workbook.cs
│   │   │   │   ├── Worksheet.cs
│   │   │   │   ├── WorksheetTypes.cs
│   │   │   │   ├── WorksheetVisibilities.cs
│   │   │   │   ├── Worksheets.cs
│   │   │   │   ├── XF.cs
│   │   │   │   ├── XFs.cs
│   │   │   │   ├── XlsDocument.cs
│   │   │   │   └── XlsText.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │       ├── AppLibrary.dll
│   │   │   │       └── AppLibrary.pdb
│   │   │   └── obj
│   │   │       ├── AppLibrary.csproj.FileListAbsolute.txt
│   │   │       └── Debug
│   │   │           ├── AppLibrary.Biff.Formula.FunctionNames.resources
│   │   │           ├── AppLibrary.ReadExcel.Reader.Biff.Formula.FunctionNames_de.resources
│   │   │           ├── AppLibrary.ReadExcel.Reader.Biff.Formula.FunctionNames_es.resources
│   │   │           ├── AppLibrary.ReadExcel.Reader.Biff.Formula.FunctionNames_fr.resources
│   │   │           ├── AppLibrary.csproj.GenerateResource.Cache
│   │   │           ├── AppLibrary.dll
│   │   │           ├── AppLibrary.pdb
│   │   │           └── TempPE
│   │   ├── AppLibrary.sln
│   │   └── AppLibrary.suo
│   ├── AppLibrary.rar
│   └── C#版excel导出导入工具类库AppLibrary.rar
├── CeRasCall.suo
└── 5t6t网_C#导入导出Excel类库(可操作多个SHEET).rar

25 directories, 325 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复